<!DOCTYPE html>
<html class="client-nojs vector-feature-night-mode-disabled vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-sticky-header-enabled" lang="en" dir="ltr"><head>
<meta charset="UTF-8">
<title>NewSQL</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="https://en.wikipedia.org/wiki/NewSQL"> <link href="./mw/ext.cite.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.icons.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.search.codex.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/user.styles.css" rel="stylesheet" type="text/css">
<meta name="ResourceLoaderDynamicStyles" content="">
<link rel="stylesheet" type="text/css" href="./mw/site.styles.css">
<link rel="stylesheet" type="text/css" href="./mw/noscript.css">
<link rel="stylesheet" type="text/css" href="./footer.css">
<link rel="stylesheet" type="text/css" href="./vector-2022.css">
</head>
<body class="skin--responsive skin-vector skin-vector-search-vue mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-NewSQL rootpage-NewSQL skin-vector-2022 action-view">
<div class="mw-page-container">
<div class="mw-page-container-inner">
<div class="mw-content-container">
<main id="content" class="mw-body">
<header class="mw-body-header vector-page-titlebar">
<h1 id="firstHeading" class="firstHeading mw-first-heading">
<span id="openzim-page-title" class="mw-page-title-main"><span class="mw-page-title-main">NewSQL</span></span>
</h1>
</header>
<a id="top"></a>
<div id="bodyContent" class="vector-body ve-init-mw-desktopArticleTarget-targetContainer" aria-labelledby="firstHeading" data-mw-ve-target-container="">
<div id="mw-content-text" class="mw-body-content mw-content-ltr" lang="en" dir="ltr"><div class="mw-content-ltr mw-parser-output" lang="en" dir="ltr">
<p><b>NewSQL</b> is a class of <a href="Relational_database_management_system" class="mw-redirect" title="Relational database management system">relational</a> <a href="Database_management_system" class="mw-redirect" title="Database management system">database management systems</a> that seek to provide the scalability of <a href="NoSQL" title="NoSQL">NoSQL</a> systems for <a href="Online_transaction_processing" title="Online transaction processing">online transaction processing</a> (OLTP) workloads while maintaining the <a href="ACID" title="ACID">ACID</a> guarantees of a traditional database system.<sup id="cite_ref-aslett2012_1-0" class="reference"><a href="#cite_note-aslett2012-1"><span class="cite-bracket">[</span>1<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-sigmodrecord_2-0" class="reference"><a href="#cite_note-sigmodrecord-2"><span class="cite-bracket">[</span>2<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-highscalability_4-0" class="reference"><a href="#cite_note-highscalability-4"><span class="cite-bracket">[</span>4<span class="cite-bracket">]</span></a></sup>
</p><p>Many <a href="Enterprise_software#Enterprise_systems" title="Enterprise software">enterprise systems</a> that handle high-profile data (e.g., financial and order processing systems) are too large for conventional relational databases, but have <a href="Database_transaction" title="Database transaction">transactional</a> and consistency requirements that are not practical for NoSQL systems.<sup id="cite_ref-aslett2010_5-0" class="reference"><a href="#cite_note-aslett2010-5"><span class="cite-bracket">[</span>5<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-6" class="reference"><a href="#cite_note-6"><span class="cite-bracket">[</span>6<span class="cite-bracket">]</span></a></sup> The only options previously available for these organizations were to either purchase more powerful computers or to develop custom <a href="Middleware" title="Middleware">middleware</a> that distributes requests over conventional <a href="DBMS" class="mw-redirect" title="DBMS">DBMS</a>. Both approaches feature high infrastructure costs and/or development costs. NewSQL systems attempt to reconcile the conflicts.
</p>
<meta property="mw:PageProp/toc">
<div class="mw-heading mw-heading2"><h2 id="History">History</h2></div>
<p>The term was first used by <a href="451_Group" title="451 Group">451 Group</a> analyst Matthew Aslett in a 2011 research paper discussing the rise of a new generation of database management systems.<sup id="cite_ref-aslett2010_5-1" class="reference"><a href="#cite_note-aslett2010-5"><span class="cite-bracket">[</span>5<span class="cite-bracket">]</span></a></sup> One of the first NewSQL systems was the <a href="H-Store" title="H-Store">H-Store</a> <a href="Parallel_database" title="Parallel database">parallel database system</a>.<sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span class="cite-bracket">[</span>7<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-8" class="reference"><a href="#cite_note-8"><span class="cite-bracket">[</span>8<span class="cite-bracket">]</span></a></sup>
</p>
<div class="mw-heading mw-heading2"><h2 id="Applications">Applications</h2></div>
<p>Typical applications are characterized by heavy <a href="Online_transaction_processing" title="Online transaction processing">OLTP</a> transaction volumes. OLTP transactions;
</p>
<ul><li>are short-lived (i.e., no user stalls)</li>
<li>touch small amounts of data per transaction</li>
<li>use indexed lookups (no table scans)</li>
<li>have a small number of forms (a small number of queries with different arguments).<sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span class="cite-bracket">[</span>9<span class="cite-bracket">]</span></a></sup></li></ul>
<p>However, some support <a href="Hybrid_transactional/analytical_processing" title="Hybrid transactional/analytical processing">hybrid transactional/analytical processing</a> (HTAP) applications. Such systems improve performance and scalability by omitting heavyweight <a href="Algorithms_for_Recovery_and_Isolation_Exploiting_Semantics" title="Algorithms for Recovery and Isolation Exploiting Semantics">recovery</a> or <a href="Concurrency_control" title="Concurrency control">concurrency control</a>.<sup id="cite_ref-10" class="reference"><a href="#cite_note-10"><span class="cite-bracket">[</span>10<span class="cite-bracket">]</span></a></sup>
</p>
<div class="mw-heading mw-heading2"><h2 id="List_of_NewSQL-databases">List of NewSQL-databases</h2></div>
<ul><li><a href="Apache_Trafodion" class="mw-redirect" title="Apache Trafodion">Apache Trafodion</a></li>
<li><a href="Clustrix" title="Clustrix">Clustrix</a></li>
<li><a href="CockroachDB" title="CockroachDB">CockroachDB</a></li>
<li><a href="Couchbase" class="mw-redirect" title="Couchbase">Couchbase</a></li>
<li><a href="CrateDB" title="CrateDB">CrateDB</a></li>
<li><a href="Google_Spanner" class="mw-redirect" title="Google Spanner">Google Spanner</a></li>
<li><a href="MySQL_Cluster" title="MySQL Cluster">MySQL Cluster</a></li>
<li><a href="NuoDB" title="NuoDB">NuoDB</a></li>
<li><a href="Pivotal_GemFire" class="mw-redirect" title="Pivotal GemFire">Pivotal GemFire</a> XD</li>
<li><a href="SequoiaDB" title="SequoiaDB">SequoiaDB</a></li>
<li><a href="SingleStore" title="SingleStore">SingleStore</a> was formerly known as MemSQL.</li>
<li><a href="TIBCO_Software#Products" title="TIBCO Software">TIBCO Active Spaces</a></li>
<li><a href="TiDB" title="TiDB">TiDB</a></li>
<li><a href="TokuDB" title="TokuDB">TokuDB</a></li>
<li><a href="TransLattice" title="TransLattice">TransLattice</a> Elastic Database</li>
<li><a href="VoltDB" title="VoltDB">VoltDB</a></li>
<li><a href="YDB_(database)" title="YDB (database)">YDB</a></li>
<li><a href="YugabyteDB" title="YugabyteDB">YugabyteDB</a></li></ul>
<div class="mw-heading mw-heading2"><h2 id="Features">Features</h2></div>
<p>The two common distinguishing features of NewSQL database solutions are that they support online scalability of NoSQL databases and the <a href="Relational_model" title="Relational model">relational data model</a> (including ACID consistency) using <a href="SQL" title="SQL">SQL</a> as their primary interface.<sup id="cite_ref-11" class="reference"><a href="#cite_note-11"><span class="cite-bracket">[</span>11<span class="cite-bracket">]</span></a></sup>
</p><p>NewSQL systems can be loosely grouped into three categories:<sup id="cite_ref-sigmodrecord_2-1" class="reference"><a href="#cite_note-sigmodrecord-2"><span class="cite-bracket">[</span>2<span class="cite-bracket">]</span></a></sup><sup id="cite_ref-12" class="reference"><a href="#cite_note-12"><span class="cite-bracket">[</span>12<span class="cite-bracket">]</span></a></sup>
</p>
<div class="mw-heading mw-heading3"><h3 id="New_architectures">New architectures</h3></div>
<p>NewSQL systems adopt various internal architectures. Some systems employ a cluster of <a href="Shared_nothing_architecture" class="mw-redirect" title="Shared nothing architecture">shared-nothing</a> nodes, in which each node manages a subset of the data. They include components such as <a href="Distributed_concurrency_control" title="Distributed concurrency control">distributed concurrency control</a>, flow control, and distributed query processing.
</p>
<div class="mw-heading mw-heading3"><h3 id="SQL_engines">SQL engines</h3></div>
<p>The second category are optimized <a href="Database_engine" title="Database engine">storage engines</a> for <a href="SQL" title="SQL">SQL</a>. These systems provide the same programming interface as SQL, but scale better than built-in engines.
</p>
<div class="mw-heading mw-heading3"><h3 id="Transparent_sharding">Transparent sharding</h3></div>
<p>These systems automatically split databases across multiple nodes using <a href="Raft_(computer_science)" class="mw-redirect" title="Raft (computer science)">Raft</a> or <a href="Paxos_(computer_science)" title="Paxos (computer science)">Paxos</a> consensus algorithm.
</p>
<div class="mw-heading mw-heading2"><h2 id="See_also">See also</h2></div>
<ul><li><a href="Transaction_processing" title="Transaction processing">Transaction processing</a></li>
<li><a href="Partition_(database)" title="Partition (database)">Partition (database)</a></li>
<li><a href="DRDA" title="DRDA">Distributed Relational Database Architecture</a></li>
<li><a href="Distributed_SQL" title="Distributed SQL">Distributed SQL</a></li></ul>
<div class="mw-heading mw-heading2"><h2 id="References">References</h2></div>
<style data-mw-deduplicate="TemplateStyles:r1239543626">
/* start https://en.wikipedia.org/ */
.mw-parser-output .reflist{margin-bottom:0.5em;list-style-type:decimal}@media screen{.mw-parser-output .reflist{font-size:90%}}.mw-parser-output .reflist .references{font-size:100%;margin-bottom:0;list-style-type:inherit}.mw-parser-output .reflist-columns-2{column-width:30em}.mw-parser-output .reflist-columns-3{column-width:25em}.mw-parser-output .reflist-columns{margin-top:0.3em}.mw-parser-output .reflist-columns ol{margin-top:0}.mw-parser-output .reflist-columns li{page-break-inside:avoid;break-inside:avoid-column}.mw-parser-output .reflist-upper-alpha{list-style-type:upper-alpha}.mw-parser-output .reflist-upper-roman{list-style-type:upper-roman}.mw-parser-output .reflist-lower-alpha{list-style-type:lower-alpha}.mw-parser-output .reflist-lower-greek{list-style-type:lower-greek}.mw-parser-output .reflist-lower-roman{list-style-type:lower-roman}
/* end https://en.wikipedia.org/ */
</style><div class="reflist">
<div class="mw-references-wrap mw-references-columns"><ol class="references">
<li id="cite_note-aslett2012-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-aslett2012_1-0">^</a></b></span> <span class="reference-text"><style data-mw-deduplicate="TemplateStyles:r1238218222">
/* start https://en.wikipedia.org/ */
.mw-parser-output cite.citation{font-style:inherit;word-wrap:break-word}.mw-parser-output .citation q{quotes:"\"""\"""'""'"}.mw-parser-output .citation:target{background-color:rgba(0,127,255,0.133)}.mw-parser-output .id-lock-free.id-lock-free a{background:url("./mw/Lock-green.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-limited.id-lock-limited a,.mw-parser-output .id-lock-registration.id-lock-registration a{background:url("./mw/Lock-gray-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-subscription.id-lock-subscription a{background:url("./mw/Lock-red-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .cs1-ws-icon a{background:url("./mw/Wikisource-logo.svg")right 0.1em center/12px no-repeat}body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-free a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-limited a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-registration a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-subscription a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .cs1-ws-icon a{background-size:contain;padding:0 1em 0 0}.mw-parser-output .cs1-code{color:inherit;background:inherit;border:none;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;color:var(--color-error,#d33)}.mw-parser-output .cs1-visible-error{color:var(--color-error,#d33)}.mw-parser-output .cs1-maint{display:none;color:#085;margin-left:0.3em}.mw-parser-output .cs1-kern-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right{padding-right:0.2em}.mw-parser-output .citation .mw-selflink{font-weight:inherit}@media screen{.mw-parser-output .cs1-format{font-size:95%}html.skin-theme-clientpref-night .mw-parser-output .cs1-maint{color:#18911f}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .cs1-maint{color:#18911f}}
/* end https://en.wikipedia.org/ */
</style><cite id="CITEREFAslett2011" class="citation web cs1">Aslett, Matthew (2011). <a rel="nofollow" class="external text" href="http://cs.brown.edu/courses/cs227/archives/2012/papers/newsql/aslett-newsql.pdf">"How Will The Database Incumbents Respond To NoSQL And NewSQL?"</a> <span class="cs1-format">(PDF)</span>. 451 Group (published April 4, 2011)<span class="reference-accessdate">. Retrieved <span class="nowrap">February 22,</span> 2020</span>.</cite></span>
</li>
<li id="cite_note-sigmodrecord-2"><span class="mw-cite-backlink">^ <a href="#cite_ref-sigmodrecord_2-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-sigmodrecord_2-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><cite id="CITEREFPavloAslett2016" class="citation conference cs1">Pavlo, Andrew; Aslett, Matthew (2016). <a rel="nofollow" class="external text" href="https://db.cs.cmu.edu/papers/2016/pavlo-newsql-sigmodrec2016.pdf">"What's Really New with NewSQL?"</a> <span class="cs1-format">(PDF)</span>. <i>SIGMOD Record</i><span class="reference-accessdate">. Retrieved <span class="nowrap">February 22,</span> 2020</span>.</cite></span>
</li>
<li id="cite_note-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-3">^</a></b></span> <span class="reference-text"><cite id="CITEREFStonebraker2011" class="citation web cs1">Stonebraker, Michael (June 16, 2011). <a rel="nofollow" class="external text" href="https://cacm.acm.org/blogs/blog-cacm/109710-new-sql-an-alternative-to-nosql-and-old-sql-for-new-oltp-apps/fulltext">"NewSQL: An Alternative to NoSQL and Old SQL for New OLTP Apps"</a>. Communications of the ACM Blog<span class="reference-accessdate">. Retrieved <span class="nowrap">February 22,</span> 2020</span>.</cite></span>
</li>
<li id="cite_note-highscalability-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-highscalability_4-0">^</a></b></span> <span class="reference-text"><cite id="CITEREFHoff2012" class="citation web cs1">Hoff, Todd (September 24, 2012). <a rel="nofollow" class="external text" href="http://highscalability.com/blog/2012/9/24/google-spanners-most-surprising-revelation-nosql-is-out-and.html">"Google Spanner's Most Surprising Revelation: NoSQL is Out and NewSQL is In"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">February 22,</span> 2020</span>.</cite></span>
</li>
<li id="cite_note-aslett2010-5"><span class="mw-cite-backlink">^ <a href="#cite_ref-aslett2010_5-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-aslett2010_5-1"><sup><i><b>b</b></i></sup></a></span> <span class="reference-text"><cite id="CITEREFAslett2011" class="citation web cs1">Aslett, Matthew (April 6, 2011). <a rel="nofollow" class="external text" href="https://blogs.451research.com/information_management/2011/04/06/what-we-talk-about-when-we-talk-about-newsql/">"What we talk about when we talk about NewSQL"</a>. 451 Group<span class="reference-accessdate">. Retrieved <span class="nowrap">February 22,</span> 2020</span>.</cite></span>
</li>
<li id="cite_note-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-6">^</a></b></span> <span class="reference-text"><cite id="CITEREFLloyd2012" class="citation web cs1">Lloyd, Alex (2012). <a rel="nofollow" class="external text" href="https://2012.berlinbuzzwords.de/sites/2012.berlinbuzzwords.de/files/slides/alex_lloyd_keynote_bbuzz_2012.pdf">"Building Spanner"</a> <span class="cs1-format">(PDF)</span>. Berlin Buzzwords (published June 5, 2012)<span class="reference-accessdate">. Retrieved <span class="nowrap">February 22,</span> 2020</span>.</cite></span>
</li>
<li id="cite_note-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><cite id="CITEREFAslett2008" class="citation web cs1">Aslett, Matthew (March 4, 2008). <a rel="nofollow" class="external text" href="https://blogs.the451group.com/information_management/2008/03/04/is-h-store-the-future-of-database-management-systems/">"Is H-Store the future of database management systems?"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">February 22,</span> 2020</span>.</cite></span>
</li>
<li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><cite id="CITEREFMonash2008" class="citation web cs1">Monash, Curt (February 20, 2008). <a rel="nofollow" class="external text" href="https://www.zdnet.com/article/h-store-complete-destruction-of-the-old-dbms-order/">"H-Store: Complete destruction of the old DBMS order?"</a>. <i>ZDNet</i><span class="reference-accessdate">. Retrieved <span class="nowrap">February 22,</span> 2020</span>.</cite></span>
</li>
<li id="cite_note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><cite id="CITEREFStonebraker2007" class="citation conference cs1"><a href="Michael_Stonebraker" title="Michael Stonebraker">Stonebraker, Michael</a>; et al. (2007). <a rel="nofollow" class="external text" href="https://hstore.cs.brown.edu/papers/hstore-endofera.pdf">"The End of an Architectural Era (It's Time for a Complete Rewrite)"</a> <span class="cs1-format">(PDF)</span>. <i>VLDB '07: Proceedings of the 33rd international conference on Very large data bases</i>. Vienna, Austria<span class="reference-accessdate">. Retrieved <span class="nowrap">February 22,</span> 2020</span>.</cite></span>
</li>
<li id="cite_note-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-10">^</a></b></span> <span class="reference-text"><cite id="CITEREFStonebrakerCattell2011" class="citation journal cs1">Stonebraker, Michael; Cattell, R. (2011). "10 rules for scalable performance in 'simple operation' datastores". <i>Communications of the ACM</i>. <b>54</b> (6): 72. <a href="Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://doi.org/10.1145%2F1953122.1953144">10.1145/1953122.1953144</a>.</cite></span>
</li>
<li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text"><cite id="CITEREFCattell2011" class="citation journal cs1">Cattell, R. (2011). <a rel="nofollow" class="external text" href="http://cattell.net/datastores/Datastores.pdf">"Scalable SQL and NoSQL data stores"</a> <span class="cs1-format">(PDF)</span>. <i>ACM SIGMOD Record</i>. <b>39</b> (4): <span class="nowrap">12–</span>27. <a href="CiteSeerX_(identifier)" class="mw-redirect" title="CiteSeerX (identifier)">CiteSeerX</a> <span class="id-lock-free" title="Freely accessible"><a rel="nofollow" class="external text" href="https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.692.2621">10.1.1.692.2621</a></span>. <a href="Doi_(identifier)" class="mw-redirect" title="Doi (identifier)">doi</a>:<a rel="nofollow" class="external text" href="https://doi.org/10.1145%2F1978915.1978919">10.1145/1978915.1978919</a>. <a href="S2CID_(identifier)" class="mw-redirect" title="S2CID (identifier)">S2CID</a> <a rel="nofollow" class="external text" href="https://api.semanticscholar.org/CorpusID:3357124">3357124</a><span class="reference-accessdate">. Retrieved <span class="nowrap">February 22,</span> 2020</span>.</cite></span>
</li>
<li id="cite_note-12"><span class="mw-cite-backlink"><b><a href="#cite_ref-12">^</a></b></span> <span class="reference-text"><cite id="CITEREFVenkatesh2012" class="citation web cs1">Venkatesh, Prasanna (January 30, 2012). <a rel="nofollow" class="external text" href="https://opensourceforu.com/2012/01/newsql-handle-big-data/">"NewSQL - The New Way to Handle Big Data"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">February 22,</span> 2020</span>.</cite></span>
</li>
</ol></div></div>
<div class="navbox-styles"><style data-mw-deduplicate="TemplateStyles:r1129693374">
/* start https://en.wikipedia.org/ */
.mw-parser-output .hlist dl,.mw-parser-output .hlist ol,.mw-parser-output .hlist ul{margin:0;padding:0}.mw-parser-output .hlist dd,.mw-parser-output .hlist dt,.mw-parser-output .hlist li{margin:0;display:inline}.mw-parser-output .hlist.inline,.mw-parser-output .hlist.inline dl,.mw-parser-output .hlist.inline ol,.mw-parser-output .hlist.inline ul,.mw-parser-output .hlist dl dl,.mw-parser-output .hlist dl ol,.mw-parser-output .hlist dl ul,.mw-parser-output .hlist ol dl,.mw-parser-output .hlist ol ol,.mw-parser-output .hlist ol ul,.mw-parser-output .hlist ul dl,.mw-parser-output .hlist ul ol,.mw-parser-output .hlist ul ul{display:inline}.mw-parser-output .hlist .mw-empty-li{display:none}.mw-parser-output .hlist dt::after{content:": "}.mw-parser-output .hlist dd::after,.mw-parser-output .hlist li::after{content:" · ";font-weight:bold}.mw-parser-output .hlist dd:last-child::after,.mw-parser-output .hlist dt:last-child::after,.mw-parser-output .hlist li:last-child::after{content:none}.mw-parser-output .hlist dd dd:first-child::before,.mw-parser-output .hlist dd dt:first-child::before,.mw-parser-output .hlist dd li:first-child::before,.mw-parser-output .hlist dt dd:first-child::before,.mw-parser-output .hlist dt dt:first-child::before,.mw-parser-output .hlist dt li:first-child::before,.mw-parser-output .hlist li dd:first-child::before,.mw-parser-output .hlist li dt:first-child::before,.mw-parser-output .hlist li li:first-child::before{content:" (";font-weight:normal}.mw-parser-output .hlist dd dd:last-child::after,.mw-parser-output .hlist dd dt:last-child::after,.mw-parser-output .hlist dd li:last-child::after,.mw-parser-output .hlist dt dd:last-child::after,.mw-parser-output .hlist dt dt:last-child::after,.mw-parser-output .hlist dt li:last-child::after,.mw-parser-output .hlist li dd:last-child::after,.mw-parser-output .hlist li dt:last-child::after,.mw-parser-output .hlist li li:last-child::after{content:")";font-weight:normal}.mw-parser-output .hlist ol{counter-reset:listitem}.mw-parser-output .hlist ol>li{counter-increment:listitem}.mw-parser-output .hlist ol>li::before{content:" "counter(listitem)"\a0 "}.mw-parser-output .hlist dd ol>li:first-child::before,.mw-parser-output .hlist dt ol>li:first-child::before,.mw-parser-output .hlist li ol>li:first-child::before{content:" ("counter(listitem)"\a0 "}
/* end https://en.wikipedia.org/ */
</style><style data-mw-deduplicate="TemplateStyles:r1236075235">
/* start https://en.wikipedia.org/ */
.mw-parser-output .navbox{box-sizing:border-box;border:1px solid #a2a9b1;width:100%;clear:both;font-size:88%;text-align:center;padding:1px;margin:1em auto 0}.mw-parser-output .navbox .navbox{margin-top:0}.mw-parser-output .navbox+.navbox,.mw-parser-output .navbox+.navbox-styles+.navbox{margin-top:-1px}.mw-parser-output .navbox-inner,.mw-parser-output .navbox-subgroup{width:100%}.mw-parser-output .navbox-group,.mw-parser-output .navbox-title,.mw-parser-output .navbox-abovebelow{padding:0.25em 1em;line-height:1.5em;text-align:center}.mw-parser-output .navbox-group{white-space:nowrap;text-align:right}.mw-parser-output .navbox,.mw-parser-output .navbox-subgroup{background-color:#fdfdfd}.mw-parser-output .navbox-list{line-height:1.5em;border-color:#fdfdfd}.mw-parser-output .navbox-list-with-group{text-align:left;border-left-width:2px;border-left-style:solid}.mw-parser-output tr+tr>.navbox-abovebelow,.mw-parser-output tr+tr>.navbox-group,.mw-parser-output tr+tr>.navbox-image,.mw-parser-output tr+tr>.navbox-list{border-top:2px solid #fdfdfd}.mw-parser-output .navbox-title{background-color:#ccf}.mw-parser-output .navbox-abovebelow,.mw-parser-output .navbox-group,.mw-parser-output .navbox-subgroup .navbox-title{background-color:#ddf}.mw-parser-output .navbox-subgroup .navbox-group,.mw-parser-output .navbox-subgroup .navbox-abovebelow{background-color:#e6e6ff}.mw-parser-output .navbox-even{background-color:#f7f7f7}.mw-parser-output .navbox-odd{background-color:transparent}.mw-parser-output .navbox .hlist td dl,.mw-parser-output .navbox .hlist td ol,.mw-parser-output .navbox .hlist td ul,.mw-parser-output .navbox td.hlist dl,.mw-parser-output .navbox td.hlist ol,.mw-parser-output .navbox td.hlist ul{padding:0.125em 0}.mw-parser-output .navbox .navbar{display:block;font-size:100%}.mw-parser-output .navbox-title .navbar{float:left;text-align:left;margin-right:0.5em}body.skin--responsive .mw-parser-output .navbox-image img{max-width:none!important}@media print{body.ns-0 .mw-parser-output .navbox{display:none!important}}
/* end https://en.wikipedia.org/ */
</style></div><div role="navigation" class="navbox" aria-labelledby="Database_management_systems327" style="padding:3px"><table class="nowraplinks hlist mw-collapsible autocollapse navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2"><style data-mw-deduplicate="TemplateStyles:r1239400231">
/* start https://en.wikipedia.org/ */
.mw-parser-output .navbar{display:inline;font-size:88%;font-weight:normal}.mw-parser-output .navbar-collapse{float:left;text-align:left}.mw-parser-output .navbar-boxtext{word-spacing:0}.mw-parser-output .navbar ul{display:inline-block;white-space:nowrap;line-height:inherit}.mw-parser-output .navbar-brackets::before{margin-right:-0.125em;content:"[ "}.mw-parser-output .navbar-brackets::after{margin-left:-0.125em;content:" ]"}.mw-parser-output .navbar li{word-spacing:-0.125em}.mw-parser-output .navbar a>span,.mw-parser-output .navbar a>abbr{text-decoration:inherit}.mw-parser-output .navbar-mini abbr{font-variant:small-caps;border-bottom:none;text-decoration:none;cursor:inherit}.mw-parser-output .navbar-ct-full{font-size:114%;margin:0 7em}.mw-parser-output .navbar-ct-mini{font-size:114%;margin:0 4em}html.skin-theme-clientpref-night .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}@media(prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .navbar li a abbr{color:var(--color-base)!important}}@media print{.mw-parser-output .navbar{display:none!important}}
/* end https://en.wikipedia.org/ */
</style><div id="Database_management_systems327" style="font-size:114%;margin:0 4em"><a href="Database" title="Database">Database management systems</a></div></th></tr><tr><th scope="row" class="navbox-group" style="width:1%">Types</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Object_database" title="Object database">Object-oriented</a>
<ul><li><a href="Comparison_of_object_database_management_systems" title="Comparison of object database management systems">comparison</a></li></ul></li>
<li><a href="Relational_database" title="Relational database">Relational</a>
<ul><li><a href="List_of_relational_database_management_systems" title="List of relational database management systems">list</a></li>
<li><a href="Comparison_of_relational_database_management_systems" title="Comparison of relational database management systems">comparison</a></li></ul></li>
<li><a href="Key%E2%80%93value_database" title="Key–value database">Key–value</a></li>
<li><a href="Column-oriented_DBMS" class="mw-redirect" title="Column-oriented DBMS">Column-oriented</a>
<ul><li><a href="List_of_column-oriented_DBMSes" title="List of column-oriented DBMSes">list</a></li></ul></li>
<li><a href="Document-oriented_database" title="Document-oriented database">Document-oriented</a></li>
<li><a href="Wide-column_store" title="Wide-column store">Wide-column store</a></li>
<li><a href="Graph_database" title="Graph database">Graph</a></li>
<li><a href="NoSQL" title="NoSQL">NoSQL</a></li>
<li><a href="In-memory_database" title="In-memory database">In-memory</a>
<ul><li><a href="List_of_in-memory_databases" title="List of in-memory databases">list</a></li></ul></li>
<li><a href="Multi-model_database" title="Multi-model database">Multi-model</a>
<ul><li><a href="Comparison_of_multi-model_databases" title="Comparison of multi-model databases">comparison</a></li></ul></li>
<li><a href="Cloud_database" title="Cloud database">Cloud</a></li>
<li><a href="Blockchain-based_database" title="Blockchain-based database">Blockchain-based database</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Concepts</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Database" title="Database">Database</a></li>
<li><a href="ACID" title="ACID">ACID</a></li>
<li><a href="Armstrong's_axioms" title="Armstrong's axioms">Armstrong's axioms</a></li>
<li><a href="Codd's_12_rules" title="Codd's 12 rules">Codd's 12 rules</a></li>
<li><a href="CAP_theorem" title="CAP theorem">CAP theorem</a></li>
<li><a href="Create%2C_read%2C_update_and_delete" title="Create, read, update and delete">CRUD</a></li>
<li><a href="Null_(SQL)" title="Null (SQL)">Null</a></li>
<li><a href="Candidate_key" title="Candidate key">Candidate key</a></li>
<li><a href="Foreign_key" title="Foreign key">Foreign key</a></li>
<li><a href="PACELC_design_principle" title="PACELC design principle">PACELC design principle</a></li>
<li><a href="Superkey" title="Superkey">Superkey</a></li>
<li><a href="Surrogate_key" title="Surrogate key">Surrogate key</a></li>
<li><a href="Unique_key" title="Unique key">Unique key</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Objects</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Relation_(database)" title="Relation (database)">Relation</a>
<ul><li><a href="Table_(database)" title="Table (database)">table</a></li>
<li><a href="Column_(database)" title="Column (database)">column</a></li>
<li><a href="Row_(database)" title="Row (database)">row</a></li></ul></li>
<li><a href="View_(SQL)" title="View (SQL)">View</a></li>
<li><a href="Database_transaction" title="Database transaction">Transaction</a></li>
<li><a href="Transaction_log" title="Transaction log">Transaction log</a></li>
<li><a href="Database_trigger" title="Database trigger">Trigger</a></li>
<li><a href="Database_index" title="Database index">Index</a></li>
<li><a href="Stored_procedure" title="Stored procedure">Stored procedure</a></li>
<li><a href="Cursor_(databases)" title="Cursor (databases)">Cursor</a></li>
<li><a href="Partition_(database)" title="Partition (database)">Partition</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Components</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Concurrency_control" title="Concurrency control">Concurrency control</a></li>
<li><a href="Data_dictionary" title="Data dictionary">Data dictionary</a></li>
<li><a href="Java_Database_Connectivity" title="Java Database Connectivity">JDBC</a></li>
<li><a href="XQuery_API_for_Java" title="XQuery API for Java">XQJ</a></li>
<li><a href="Open_Database_Connectivity" title="Open Database Connectivity">ODBC</a></li>
<li><a href="Query_language" title="Query language">Query language</a></li>
<li><a href="Query_optimization" title="Query optimization">Query optimizer</a></li>
<li><a href="Query_Rewriting" class="mw-redirect" title="Query Rewriting">Query rewriting system</a></li>
<li><a href="Query_plan" title="Query plan">Query plan</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Functions</th><td class="navbox-list-with-group navbox-list navbox-odd" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Database_administration" title="Database administration">Administration</a></li>
<li><a href="Query_optimization" title="Query optimization">Query optimization</a></li>
<li><a href="Replication_(computing)#DATABASE" title="Replication (computing)">Replication</a></li>
<li><a href="Shard_(database_architecture)" title="Shard (database architecture)">Sharding</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="width:1%">Related topics</th><td class="navbox-list-with-group navbox-list navbox-even" style="width:100%;padding:0"><div style="padding:0 0.25em">
<ul><li><a href="Database_model" title="Database model">Database models</a></li>
<li><a href="Database_normalization" title="Database normalization">Database normalization</a></li>
<li>Database storage</li>
<li><a href="Distributed_database" title="Distributed database">Distributed database</a></li>
<li><a href="Federated_database_system" title="Federated database system">Federated database system</a></li>
<li><a href="Referential_integrity" title="Referential integrity">Referential integrity</a></li>
<li><a href="Relational_algebra" title="Relational algebra">Relational algebra</a></li>
<li><a href="Relational_calculus" title="Relational calculus">Relational calculus</a></li>
<li><a href="Relational_model" title="Relational model">Relational model</a></li>
<li><a href="Object%E2%80%93relational_database" title="Object–relational database">Object–relational database</a></li>
<li><a href="Transaction_processing" title="Transaction processing">Transaction processing</a></li></ul>
</div></td></tr><tr><td class="navbox-abovebelow" colspan="2"><div>
<ul><li><span class="noviewer" typeof="mw:File"><span title="Category"></span></span> Category</li>
<li><span class="noviewer" typeof="mw:File"><span title="Outline"></span></span> <a href="Outline_of_databases" title="Outline of databases">Outline</a></li></ul>
</div></td></tr></tbody></table></div></div><!--htdig_noindex--><div><div class="zim-footer">
This article is issued from <a class="external text" title="Last edited on 2025-02-22" href="https://en.wikipedia.org/wiki/?title=NewSQL&oldid=1277080896">Wikipedia</a>. The text is available under <a class="external text" href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">Creative Commons Attribution-Share Alike 4.0</a> unless otherwise noted. Additional terms may apply for the media files.
</div>
</div><!--/htdig_noindex--></div>
</div>
</main>
</div>
</div>
</div>
</body></html>